SetUEvent Routine ---------------------------------------------------------------------------- Action Sets the BASIC entry point that causes a user-defined event. Syntax SetUEvent Remarks SetUEvent is used in user-event trapping. SetUEvent signals an event for the ON UEVENT event-handling routine. The SetUEvent routine is a part of BASIC, and is automatically included in compiled applications or when running QBX with the -L command-line option. Your interrupt-service routine must call SetUEvent; it is the only way to alert your program that the event has occurred. You can call SetUEvent from any non-BASIC language. To use the SetUEvent routine in the QBX environment, use any Quick library. Outside of the QBX environment, you do not have to link to another library. See Also ON event, UEVENT Example See the UEVENT statements programming example, which uses the SetUEvent routine.